Mastodon

Crazy's Amazing Corner on the Web

/blog/2025/YT Cleanse Week 3/

09. March 2025 at 21:00

YT-Challange - Week 3

So I know this Check In is very Delayed, but it was initially written at end of Week 3, I was just busy remaking the Website, that I didn't Post it until I was done.

But here is my Overview of Week 3: This Week wasn't the Best in Consumption. Breaking my own goals on Most Days. Which is a bit disappointing. But I can also say, that I have been having a Mood Upswing over the Week. Feeling Productive, not being Productive, but feeling Productive. Furthermore, the Content I was watching this Week was way more Informative and Entertaining. I am paying way more attention when I watch something and therefor get more out of it. No passive Consumption on the Other Monitor.

Also, I am getting better with Boredom, as I finally am doing More things, compared to the start of the Challenge. But also I can deal better with Boredom. I started thinking more about what I saw/watched/etc today when I am bored, making it so much easier to Process the Information, but also makes the Boredom ease of. Making it easier to process the Shitshow the World currently is.

Another thing, probably why I felt so Productive, is that I started writing my Diary again. Most nights this week I have been sitting down for half an hour to an hour and started writing. A little Segment I added to my Diary is a breakdown of the Media I watched. A Review and a Synopsis basically. Maybe someday I compile these notes together and write a Proper Personal Review of these Shows and how I find them and Publish them here. But that's something for Future me, is at least on my ever-growing To-Do list.

For next week I should start finding a way to make the Feeling of Productiveness to actually translate to Productiveness.

<canvas id="watchtime" style="width: 70%;"></canvas>
<script>
const ctx = document.getElementById('watchtime');
new Chart(ctx, {
    type: 'bar',
    data: {
        labels: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
        datasets: [
            {
                label: "YouTube",
                data: [0.59,0.82,0.97,1.45,1.17,0.23,1.19],
            },
            {
                label: "Owned",
                data: [1.15, 1, 0, 0.4, 0, 0.4, 0],
            },
            {
                label: "News",
                data: [0.25,0.25,0,0.25,0.25,0.5,0],
            },
            {
                label: "Straming",
                data: [0,0,0,0,0.45,1.6,0],
            },
            {
                label: "Public",
                data: [0,0,0,0,0.58,0,0],
            },
        ],
    },
    options: {
        color: "white",
        responsive: false,
        scales: {
            x: {
                stacked: true,
            },
            y: {
                stacked: true
            }
        }
    }
});
</script>